Indyk and Motwani (1998)
If there exists some with , return a vector with in:
- Time:
- Space:
where is the “hamming distance” number of elements that different between and .
Used in near neighbor search problem.
#incomplete
Given a -locality sensitive hash family, -PLEB (point location in equal balls) can be solved with constant probability using:
- Space:
- Query time: hash function evaluations and metric computations, , where .
PLEB (point location in equal balls)
For given radii r1, r2 with r1 ≤ r2, if there is at least one point p ∈ X with d(q, p) ≤ r1, return any p with d(q, p) < r2. On the other hand, if there is no point p ∈ X with d(q, p) < r2, output FAIL.
References:
- P. Indyk and R. Motwani, “Approximate nearest neighbors: towards removing the curse of dimensionality,” in Proceedings of the thirtieth annual ACM symposium on Theory of computing - STOC ’98, Dallas, Texas, United States: ACM Press, 1998, pp. 604–613. doi: 10.1145/276698.276876.
- https://www.cs.princeton.edu/courses/archive/fall18/cos521/Lectures/lec12.pdf